home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-11-21 | 9.2 KB | 322 lines | [TEXT/ALFA] |
- # JEG - modernized
- #
- # make alias list to pass to AEBuild
- proc makeAlis {name} {
- return [aebuild::alis $name]
- }
-
- # JEG - This is unused???
- proc makeFile {name} {
- return [aebuild::alis $name]
- }
-
- ##
- # -------------------------------------------------------------------------
- #
- # "makeAlises" --
- #
- # This proc has changed so it takes a list of items rather than an
- # unknown number of args 'args'. If 'l' is a list you must call
- # this proc with 'makeAlises $l' rather than 'eval makeAlises $l'
- # as was previously required.
- # -------------------------------------------------------------------------
- ##
-
- # JEG - modernized
- #
- proc makeAlises {names} {
- return [aebuild::list $names -as alis]
- }
-
- ##
- # -------------------------------------------------------------------------
- #
- # "handleReply" --
- #
- # Queued replies are passed through AEPrint and then to this routine.
- #
- # If you write your own handleReply procedure, register it to this
- # proc with:
- #
- # currentReplyHandler 'my-proc-name'
- #
- # Do this each time you send an event which may receive a reply.
- # There is no need to register your proc at startup or any such
- # 'pre-registering'. Just call the above proc _each_ time.
- #
- # You proc should take one parameter (the reply), and should
- # return '1' if it handled the reply, otherwise it can do/return
- # anything else (although hopefully not much if it didn't handle
- # anything).
- #
- # If your replies often time-out or have other problems such
- # that you don't handle them correctly, you may wish to register
- # your reply-handler with 'currentReplyHandler 'my-proc' 1' which
- # says 'only register if it's not already registered'. Or you
- # may wish to remove duplicates from the list of handlers
- # directly.
- #
- # Results:
- # depends on what is registered
- #
- # Side effects:
- # calls other procs. Removes handler from queue if it handled
- # the reply.
- #
- # --Version--Author------------------Changes-------------------------------
- # 1.0 <darley@fas.harvard.edu> first one with hook handling
- # 2.0 <darley@fas.harvard.edu> different mechanism to give priority
- # -------------------------------------------------------------------------
- ##
- proc handleReply {rep} {
- global lastReply replyHandlers
- set lastReply $rep
- set i 0
- foreach h $replyHandlers {
- if {$h != ""} {
- catch [list $h $rep] res
- if {$res == 1} {
- set replyHandlers [lreplace $replyHandlers $i $i]
- return
- }
- }
- incr i
- }
- message "Reply '$rep' not handled"
- }
-
- ensureset replyHandlers ""
-
- ##
- # -------------------------------------------------------------------------
- #
- # "currentReplyHandler" --
- #
- # Add item to end of queue to receive replies, even if it is already
- # in the queue, unless we set 'nodups'
- # -------------------------------------------------------------------------
- ##
- proc currentReplyHandler {proc {nodups 0}} {
- global replyHandlers
- if {!$nodups || (![lcontains replyHandlers $proc])} {
- lappend replyHandlers $proc
- }
- }
-
- # JEG - only used by thinkMenu.tcl. Why is it here?
- #
- # Return an object record specifying the desired think project file.
- proc fileObject {name} {
- join [concat {obj\{want:type('SFIL'), from:'null'(), form:'name', seld:“} [file tail $name] {”\}}] ""
- }
-
- proc sendOpenEvent {filler appname fname} {
- if {$filler == "noReply"} {
- AEBuild $appname aevt odoc "----" [makeAlis $fname]
- } else {
- AEBuild -r $appname aevt odoc "----" [makeAlis $fname]
- }
- }
-
-
- # Send open folder event to Finder. Name must end in colon.
- proc openFolder {name} {
- if {![regexp ":$" $name]} {
- append name ":"
- }
- switchTo Finder
- sendOpenEvent -r Finder $name
- }
-
- proc launchDoc {name} {
- set app [app::launchFore [getFileSig $name]]
- sendOpenEvent -r [file tail $app] $name
- }
-
- # Send multiple open events
- proc sendOpenEvents {appname args} {
- AEBuild -r $appname aevt odoc "----" [makeAlises $args]
- }
-
- proc openAndSendFile {sig} {
- set fname [win::Current]
- if {[winDirty]} {
- if {[dialog::yesno "Save '$fname'?"]} {
- save
- }
- }
-
- set name [file tail [app::launchFore $sig]]
- sendOpenEvent noReply $name $fname
- }
-
- #================================================================================
- # General Apple Event handling routines
- #
- # (written by Tom Pollard for use in the MacPerl package)
- #================================================================================
-
- # Quit an application.
- proc sendQuitEvent {appname} {
- AEBuild $appname "aevt" "quit"
- }
-
- # Close one of an application's windows, designated by number.
- proc sendCloseWinNum {appname num} {
- AEBuild $appname "core" "clos" "----" [AEWinByPos $num]
- }
-
- # Close one of an application's windows, designated by name.
- proc sendCloseWinName {appname name} {
- AEBuild $appname "core" "clos" "----" [AEWinByName $name]
- }
-
- # Obtain the number of lines in one of an application's
- # windows, designated by name.
- proc sendCountLines {appname name} {
- set winObj [AEWinByName $name]
- set res [AEBuild -r $appname "core" "cnte" "----" $winObj kocl type('clin')]
- if {[regexp {:(.*)\}} $res allofit nlines]} {
- return $nlines
- } else {
- return 0
- }
- }
-
- # Get a selected range of lines from one of an application's
- # windows, designated by name. If $last is missing, then a single
- # line is returned; if both $first and $last are missing, then
- # the complete window contents are returned.
- proc sendGetText {appname name {first {missing}} {last {missing}}} {
- global ALPHA
- set winObj [AEWinByName $name]
- if {$first != "missing"} {
- if {$last != "missing"} {
- set rangDesc [AELineRange $first $last]
- } else {
- set rangDesc [AEAbsPos $first]
- }
- set objDesc "obj{want:type('clin'), from:$winObj, $rangDesc }"
- } else {
- set objDesc "obj{want:type('ctxt'), from:$winObj, form:'indx', seld:abso('all') }"
- }
- set res [AEBuild -r $appname "core" "getd" "----" $objDesc]
- if {![regexp {“.*”} $res text]} { set text {} }
- return [string trim $text {“”}]
- }
-
- # Set a selected range of lines in one of an application's
- # windows, designated by name. If $last is missing, then a single
- # line is changed; if both $first and $last are missing, then
- # the complete window contents are replaced by the new text.
- proc sendSetText {appname name text {first {missing}} {last {missing}}} {
- set winObj [AEWinByName $name]
- if {$first != "missing"} {
- if {$last != "missing"} {
- set rangDesc [AELineRange $first $last]
- } else {
- set rangDesc [AEAbsPos $first]
- }
- set objDesc "obj{want:type('clin'), from:$winObj, $rangDesc }"
- } else {
- set objDesc "obj{want:type('ctxt'), from:$winObj, form:'indx', seld:abso('all') }"
- }
- set res [AEBuild -r $appname "core" "setd" "----" $objDesc "data" [curlyq $text]]
- if {![regexp {“.*”} $res text]} { set text {} }
- return [string trim $text {“”}]
- }
-
- ################################################################################
- # Utility functions for constructing AppleEvent descriptors for AEBuild
- ################################################################################
-
- # JEG - modernized
- #
- proc AEFilename {name} {
- return [aebuild::filename $name]
- }
-
- # JEG - modernized
- #
- proc AEWinByName {name} {
- return [aebuild::winByName $name]
- }
-
- # JEG - modernized
- #
- proc AEWinByPos {absPos} {
- return [aebuild::winByPos $absPos]
- }
-
- # JEG - modernized
- #
- proc AELineRange {absPos1 absPos2} {
- return [aebuild::lineRange $absPos1 $absPos2]
- }
-
- # JEG - modernized
- #
- proc AEAbsPos {posName} {
- return [aebuild::absPos $posName]
- }
-
- # JEG - modernized
- #
- proc AEName {name} {
- return [aebuild::name $name]
- }
-
- # JEG - modernized
- #
- proc curlyq {str} {
- return [aebuild::TEXT $str]
- }
-
- ################################################################################
- proc nullObject {} { return "'null'()" }
- proc objectType {type} { return "type($type)" }
- proc nameObject {type name from} { return "obj \{form:name, want:[objectType $type], seld:$name, from:$from\}" }
- proc indexObject {type ind from} { return "obj \{form:indx, want:[objectType $type], seld:$ind, from:$from\}" }
- proc propertyObject { prop object } { return "obj \{form:prop, want:[objectType prop], seld:[objectType $prop], from:$object\}" }
-
- # JEG - unused?
- #
- # 'process' must have single quotes
- proc buildMsgReply { process suite event args } { return [eval [list AEBuild -r $process $suite $event ] $args] }
-
- # JEG - modernized
- #
- proc countObjects { process fromObject class } {
- return [aebuild::result $process core cnte \
- ---- $fromObject \
- kocl [objectType $class] \
- ]
- }
-
- proc createThingAtEnd {process container class} {
- set res [AEBuild -r $process core crel insh "insl \{kobj:$container\}" kocl "type($class)"]
- }
-
-
- proc getObjectData { process class name from } {
- set res [AEBuild -r $process core getd ---- [nameObject $class "“$name”" $from] {rtyp{type:TEXT}}]
- if {[regexp {“(.*)”} $res dummy mtch]} {
- return $mtch
- } else {
- error "Bad count proc"
- }
- }
-
-
- proc objectProperty { process property object } {
- AEBuild -r $process core getd ---- [propertyObject $property $object]
- }
-
- # Extract and return a path from a result.
- proc extractPath {res} {
- if {[regexp {«(.*)»} $res dummy fss]} {
- return [specToPathName $fss]
- }
- error "bad path $name"
- }
-